home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
util2
/
hexdump.lha
/
hexdump
/
dmakefile
< prev
next >
Wrap
Makefile
|
1995-11-18
|
540b
|
34 lines
# dmakefile
#
# designed to run on the DICE Amiga compiler
#
# written by Mark Carter 18.11.95
#
# This file is PUBLIC DOMAIN
HOME=/b2/pjr
CC=dcc
SRC=.
DCC_FLAGS= -E err.txt
CFLAGS=-c -DH_OFFSETS -DH_COMPRESS
CFILES=hd.c hexprint.c
OBJ=hd.o hexprint.o
hd: $(OBJ)
$(CC) $(DCC_FLAGS) $(OBJ) -o hd
inst: hd
cp hd $(HOME)/bin
hd.o: hd.c hexprint.h
delete err.txt
$(CC) $(DCC_FLAGS) $(CFLAGS) -c hd.c
hexprint.o: hexprint.c hexprint.h
delete err.txt
$(CC) $(DCC_FLAGS) $(CFLAGS) -c hexprint.c
clean :
delete err.txt
delete $(OBJ)